20. Solutions: ORDER BY
Solutions to previous ORDER BY questions
- Write a query to return the 10 earliest orders in the orders table. Include the
id
,occurred_at
, andtotal_amt_usd
.
SELECT id, occurred_at, total_amt_usd
FROM orders
ORDER BY occurred_at
LIMIT 10;
- Write a query to return the top 5 orders in terms of largest
total_amt_usd
. Include theid
,account_id
, andtotal_amt_usd
.
SELECT id, account_id, total_amt_usd
FROM orders
ORDER BY total_amt_usd DESC
LIMIT 5;
- Write a query to return the lowest 20 orders in terms of smallest
total_amt_usd
. Include theid
,account_id
, andtotal_amt_usd
.
SELECT id, account_id, total_amt_usd
FROM orders
ORDER BY total_amt_usd
LIMIT 20;
Code
If you need a code on the https://github.com/udacity.